ISeriesColumn

StockSharp.Xaml.Charting.Model.DataSeries

Defines the interface to a generically typed series column in a DataSeries

Implements: IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable, IList, ICollection, ISeriesColumn

Methods

AddRange
public void AddRange(IEnumerable<T> values)
iSeriesColumn.AddRange(values)

Adds a range of items to the column

values
The values.
GetMaximum
public T GetMaximum()
result = iSeriesColumn.GetMaximum()

Gets the maximum value of the ISeriesColumn

GetMinimum
public T GetMinimum()
result = iSeriesColumn.GetMinimum()

Gets the minimum value of the ISeriesColumn

InsertRange
public void InsertRange(int startIndex, IEnumerable<T> values)
iSeriesColumn.InsertRange(startIndex, values)

Insert a range of items at the specified index

startIndex
The index to insert at.
values
The values.
RemoveRange
public void RemoveRange(int startIndex, int count)
iSeriesColumn.RemoveRange(startIndex, count)

Remove a range of items starting from the specified index

startIndex
The index to start removing from
count
Numbers of point to remove